home *** CD-ROM | disk | FTP | other *** search
- function start_link()
- {
- gotoAndPlay(111);
- trace("ok");
- }
- function domain_link()
- {
- getUrl("http://www.i-dressup.com", "_blank");
- trace("ok");
- }
- function sound_click()
- {
- btn_sound = new Sound(this.btn_mc2);
- btn_sound.attachSound("click");
- btn_sound.setVolume(50);
- btn_sound.start(0,1);
- }
- stop();
- begin_btn.onRelease = function()
- {
- start_link();
- };
- begin_btn.onRollOver = function()
- {
- this.gotoAndStop(2);
- sound_click();
- };
- begin_btn.onRollOut = begin_btn.onReleaseOutside = function()
- {
- this.gotoAndStop(1);
- };
- domain_btn.onRelease = function()
- {
- domain_link();
- };
- domain_btn.onRollOver = function()
- {
- this.gotoAndStop(2);
- sound_click();
- };
- domain_btn.onRollOut = domain_btn.onReleaseOutside = function()
- {
- this.gotoAndStop(1);
- };
-